home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tiff / README.lib < prev    next >
Text File  |  1995-06-21  |  13KB  |  252 lines

  1. $Header: /usr/people/sam/tiff/libtiff/RCS/README,v 1.19 1994/07/26 16:48:07 sam Exp $
  2. #
  3. # Tag Image File Format Library
  4. #
  5. # Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994 Sam Leffler
  6. # Copyright (c) 1991, 1992, 1993, 1994 Silicon Graphics, Inc.
  7. # Permission to use, copy, modify, distribute, and sell this software and 
  8. # its documentation for any purpose is hereby granted without fee, provided
  9. # that (i) the above copyright notices and this permission notice appear in
  10. # all copies of the software and related documentation, and (ii) the names of
  11. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  12. # publicity relating to the software without the specific, prior written
  13. # permission of Sam Leffler and Silicon Graphics.
  14. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  18. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  19. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  21. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  22. # OF THIS SOFTWARE.
  23. #
  24.  
  25. Configuration Comments:
  26. ----------------------
  27. Aside from the compression algorithm support, there are
  28. configuration-related defines that you can override in the Makefile
  29. or in the default configuration file tiffconf.h:
  30.  
  31. COLORIMETRY_SUPPORT
  32.         if this is defined, support for the colorimetry
  33.         tags will be compiled in.
  34. JPEG_SUPPORT    if this is defined, support for the JPEG-related
  35.         tags will be compiled in.  Note that at the present
  36.         time the JPEG compression support is not included.
  37. YCBCR_SUPPORT    if this is defined, support for the YCbCr-related
  38.         tags will be compiled in.  Note that you'll want
  39.         YCBCR support for JPEG compression+decompression.
  40. CMYK_SUPPORT    if this is defined, support for the CMYK-related
  41.         tags will be compiled in.
  42. MMAP_SUPPORT    if this is set, and OS support exists for memory
  43.         mapping files, then the library will try to map
  44.         a file if it is opened for reading.  If mmap does
  45.         not exist on your system, or the mmap call fails
  46.         on the file, then the normal read system calls are
  47.         used.  It is not clear how useful this facility is.
  48.  
  49. By default tiffconf.h defines COLORIMETRY_SUPPORT, JPEG_SUPPORT,
  50. YCBCR_SUPPORT, CMYK_SUPPORT.  MMAP_SUPPORT is not defined.
  51.  
  52. General Portability Comments:
  53. ----------------------------
  54. I run this code on SGI machines (big-endian, MIPS CPU, 32-bit ints,
  55. IEEE floating point).  Makefiles exist for other platforms that the
  56. code runs on -- this work has mostly been done by other people.
  57. The code runs on Macintosh and PC-based systems, although I don't
  58. know all the particulars.
  59.  
  60. In general, I promise only that the code runs on SGI machines.
  61. I will, however, gladly take back fixes to make it work on other
  62. systems -- when the changes are reasonable unobtrusive.
  63.  
  64. The software is written to assume an ANSI C compilation environment.
  65. If your compiler does not support ANSI function prototypes, const,
  66. and <stdarg.h> then you will have to make modifications to the
  67. software.  In the past I have tried to support compilers w/o const
  68. and systems w/o <stdarg.h>, but I am NO LONGER INTERESTED in these
  69. antiquated environments.  With the general availability of gcc, I
  70. see no reason to incorporate modifications to the software for these
  71. purposes.
  72.  
  73. I've tried to isolate as many of the OS-dependencies as possible in
  74. two files: tiffcomp.h and tif_<os>.c.  The latter file contains
  75. OS-specific routines to do I/O and I/O-related operations.  The
  76. UNIX (tif_unix.c), Macintosh (tif_apple.c), and VMS (tif_vms.c)
  77. code has had the most use; the MS/DOS support (tif_msdos.c) assumes
  78. some level of UNIX system call emulation (i.e. open, read, write,
  79. fstat, malloc, free).
  80.  
  81. Machine dependencies such as byte order are determined on the
  82. fly and do not need to be specified.
  83.  
  84. Two general portability-related defines are:
  85.  
  86. BSDTYPES    Define this if your system does NOT define the
  87.         usual BSD typedefs: u_char, u_short, u_int, u_longs.
  88. HAVE_IEEEFP    Define this as 0 or 1 according to the floating point
  89.         format suported by the machine.  If your machine does
  90.         not support IEEE floating point then you will need to
  91.         add support to tif_machdep.c to convert between the
  92.         native format and IEEE format.
  93.  
  94. Note that tiffcomp.h defines HAVE_IEEEFP to be 1 (BSDTYPES is not defined).
  95.  
  96. Types and Portability:
  97. ---------------------
  98. The software makes extensive use of typedefs to promote portability.
  99. Two sets of typedefs are used, one for communication with clients
  100. of the library and one for internal data structures and parsing of the
  101. TIFF format.  There are interactions between these two to be careful
  102. of, but for the most part you should be able to deal with portability
  103. purely by fiddling with the following machine-dependent typedefs:
  104.  
  105. uint16        16-bit unsigned integer        tiff.h
  106. int16        16-bit signed integer        tiff.h
  107. uint32        32-bit unsigned integer        tiff.h
  108. int32        32-bit signed integer        tiff.h
  109. dblparam_t    promoted type for floats    tiffcomp.h
  110.  
  111. (to clarify dblparam_t, it is the type that float parameters are
  112. promoted to when passed by value in a function call.)
  113.  
  114. The following typedefs are used throughout the library and interfaces
  115. to refer to certain objects whose size is dependent on the TIFF image
  116. structure:
  117.  
  118. typedef    unsigned int ttag_t;    directory tag
  119. typedef    uint16 tdir_t;        directory index
  120. typedef    uint16 tsample_t;    sample number
  121. typedef    uint32 tstrip_t;    strip number
  122. typedef uint32 ttile_t;        tile number
  123. typedef    int32 tsize_t;        i/o size in bytes
  124. typedef    void* tdata_t;        image data ref
  125. typedef    void* thandle_t;    client data handle
  126. typedef    int32 toff_t;        file offset (should be off_t)
  127. typedef    unsigned char* tidata_t;internal image data
  128.  
  129. Note that tstrip_t, ttile_t, and tsize_t are constrained to be
  130. no more than 32-bit quantities by 32-bit fields they are stored
  131. in in the TIFF image.  Likewise tsample_t is limited by the 16-bit
  132. field used to store the SamplesPerPixel tag.  tdir_t constrains
  133. the maximum number of IFDs that may appear in an image and may
  134. be an arbitrary size (w/o penalty).  ttag_t must be either int,
  135. unsigned int, pointer, or double because the library uses a varargs
  136. interface and ANSI restricts the type of the parameter before an
  137. ellipsis to be a promoted type.  toff_t is defined as int32 because
  138. TIFF file offsets are (unsigned) 32-bit quantities.  A signed
  139. value is used because some interfaces return -1 on error (sigh).
  140. Finally, note that tidata_t is used internally to the library to
  141. manipulate internal data.  User-specified data references are
  142. passed as opaque handles and only cast at the lowest layers where
  143. their type is presumed.
  144.  
  145. General Comments:
  146. ----------------
  147. The library is designed to hide as much of the details of TIFF as
  148. possible.  In particular, TIFF directories are read in their entirety
  149. into an internal format.  Only the tags known by the library are
  150. available to a user and certain tag data may be maintained that a user
  151. doesn't care about (e.g. transfer function tables).
  152.  
  153. To add support for a new directory tag the following mods are needed:
  154.  
  155. 1. Define the tag in tiff.h.
  156. 2. Add a field to the directory structure in tiffiop.h and define a
  157.    FIELD_* bit.
  158. 3. Add an entry in the FieldInfo array defined at the top of tiff_dirinfo.c.
  159. 4. Add entries in TIFFSetField1() and TIFFGetField1() for the new tag.
  160. 5. (optional) If the value associated with the tag is not a scalar value
  161.    (e.g. the array for TransferFunction), then add the appropriate
  162.    code to TIFFReadDirectory() and TIFFWriteDirectory().  You're best
  163.    off finding a similar tag and cribbing code.
  164. 6. Add support to TIFFPrintDirectory() in tiff_print.c to print the
  165.    tag's value.
  166.  
  167. If you want to maintain portability, beware of making assumptions
  168. about data types.  Use the typedefs (uint16, etc. when dealing with
  169. data on disk and t*_t when stuff is in memory) and be careful about
  170. passing items through printf or similar vararg interfaces.
  171.  
  172. To add support for a compression algorithm:
  173.  
  174. 1. Define the tag value in tiff.h.
  175. 2. Edit the file tiff_compress.c to add an entry to the
  176.    CompressionSchemes[] array.
  177. 3. Create a file with the compression scheme code, by convention files
  178.    are named tif_*.c (except perhaps on some systems where the tif_ prefix
  179.    pushes some filenames over 14 chars.
  180. 4. Edit the Makefiles to include the new source file.
  181.  
  182. A compression scheme, say foo, can have up to 10 entry points:
  183.  
  184. TIFFfoo(tif)        /* initialize scheme and setup entry points in tif */
  185. fooPreDecode(tif)    /* called once per strip, after data is read,
  186.                but before the first row in a strip is decoded */
  187. fooDecode*(tif, bp, cc, sample)/* decode cc bytes of data into the buffer */
  188.     fooDecodeRow(...)    /* called to decode a single scanline */
  189.     fooDecodeStrip(...)    /* called to decode an entire strip */
  190.     fooDecodeTile(...)    /* called to decode an entire tile */
  191. fooPreEncode(tif)    /* called once per strip/tile, before the first row in
  192.                a strip is encoded */
  193. fooEncode*(tif, bp, cc, sample)/* encode cc bytes of user data (bp) */
  194.     fooEncodeRow(...)    /* called to decode a single scanline */
  195.     fooEncodeStrip(...)    /* called to decode an entire strip */
  196.     fooEncodeTile(...)    /* called to decode an entire tile */
  197. fooPostEncode(tif)    /* called once per strip/tile, just before data is written */
  198. fooSeek(tif, row)    /* seek forwards row scanlines from the beginning
  199.                of a strip (row will always be >0 and <rows/strip */
  200. fooCleanup(tif)        /* called when compression scheme is replaced by user */
  201.  
  202. Note that the encoding and decoding variants are only needed when
  203. a compression algorithm is dependent on the structure of the data.
  204. For example, Group 3 2D encoding and decoding maintains a reference
  205. scanline.  The sample parameter identifies which sample is to be
  206. encoded or decoded if the image is organized with PlanarConfig=2
  207. (separate planes).  This is important for algorithms such as JPEG.
  208. If PlanarConfig=1 (interleaved), then sample will always be 0.
  209.  
  210. The library handles most I/O buffering.  There are two data buffers
  211. when decoding data: a raw data buffer that holds all the data in a
  212. strip, and a user-supplied scanline buffer that compression schemes
  213. place decoded data into.  When encoding data the data in the
  214. user-supplied scanline buffer is encoded into the raw data buffer (from
  215. where it's written).  Decoding routines should never have to explicitly
  216. read data -- a full strip/tile's worth of raw data is read and scanlines
  217. never cross strip boundaries.  Encoding routines must be cognizant of
  218. the raw data buffer size and call TIFFFlushData1() when necessary.
  219. Note that any pending data is automatically flushed when a new strip/tile is
  220. started, so there's no need do that in the tif_postencode routine (if
  221. one exists).  Bit order is automatically handled by the library when
  222. a raw strip or tile is filled.  If the decoded samples are interpreted
  223. by the decoding routine before they are passed back to the user, then
  224. the decoding logic must handle byte-swapping by overriding the tif_postdecode
  225. routine (set it to TIFFNoPostDecode) and doing the required work
  226. internally.  For an example of doing this look at the horizontal
  227. differencing code in the LZW decoding routines.
  228.  
  229. The variables tif_rawcc, tif_rawdata, and tif_rawcp in a TIFF structure
  230. are associated with the raw data buffer.  tif_rawcc must be non-zero
  231. for the library to automatically flush data.  The variable
  232. tif_scanlinesize is the size a user's scanline buffer should be.  The
  233. variable tif_tilesize is the size of a tile for tiled images.  This
  234. should not normally be used by compression routines, except where it
  235. relates to the compression algorithm.  That is, the cc parameter to the
  236. tif_decode* and tif_encode* routines should be used in terminating
  237. decompression/compression.  This ensures these routines can be used,
  238. for example, to decode/encode entire strips of data.
  239.  
  240. In general, if you have a new compression algorithm to add, work from
  241. the code for an existing routine.  In particular, tiff_dumpmode.c has
  242. the trivial code for the "nil" compression scheme, tiff_packbits.c is a
  243. simple byte-oriented scheme that has to watch out for buffer
  244. boundaries, and tiff_lzw.c has the LZW scheme that has the most
  245. complexity -- it tracks the buffer boundary at a bit level.
  246.  
  247. Of course, using a private compression scheme (or private tags) limits
  248. the portability of your TIFF files.
  249.